home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Language/OS - Multiplatform Resource Library
/
LANGUAGE OS.iso
/
glass
/
glass.lha
/
GLASS
/
libcvr
/
all.h
next >
Wrap
C/C++ Source or Header
|
1990-11-09
|
530b
|
42 lines
/* File: all.h
*
* Some configuration constants.
*/
#include <stdio.h>
#include <tmc.h>
#include "config.h"
#ifdef HPUX
#include <malloc.h>
#define GOTMALLOC
#endif
#ifndef GOTMALLOC
extern char *malloc();
extern free();
extern char *calloc();
extern char *realloc();
#endif
#ifdef HPUX
extern void exit();
#else
extern exit();
#endif
#ifdef BSD
#include <strings.h>
#else
#ifdef APOLLO
#include <strings.h>
#else
#include <string.h>
#endif
#endif
#ifndef FALSE
#define TRUE 1
#define FALSE 0
#endif
extern void perror();